All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class quicktime.std.image.GraphicsMode

java.lang.Object
   |
   +----quicktime.util.QTByteObject
           |
           +----quicktime.std.image.GraphicsMode

public final class GraphicsMode
extends QTByteObject
implements QuickTimeLib, Cloneable
The GraphicsMode class implements details that describe transfer operations and transperancy operations. refer to ModifierTrackGraphicsMode in QuickTime

See Also:
QD

Variable Index

 o kNativeSize
This is the size (the number of bytes) that are required for this class

Constructor Index

 o GraphicsMode()
This constructor creates an empty GraphicsMode object.
 o GraphicsMode(int, QDColor)
This constructor creates a GraphicsMode object for specified mode and operand color.

Method Index

 o clone()
Return a copy of the GraphicsMode object.
 o getColor()
This method returns the operand mode
 o getGraphicsMode()
This method returns the graphics mode
 o isGraphicsModeOpaque()
Returns true if the current mode is opaque, otherwise false.
 o setColor(QDColor)
This method sets the operand color.
 o setGraphicsMode(int)
This method sets the graphics mode
 o toString()
Returns the String representation of this Rectangle's values.

Variables

 o kNativeSize
 public static final int kNativeSize
This is the size (the number of bytes) that are required for this class

Constructors

 o GraphicsMode
 public GraphicsMode()
This constructor creates an empty GraphicsMode object.

 o GraphicsMode
 public GraphicsMode(int gMode,
                     QDColor opColor)
This constructor creates a GraphicsMode object for specified mode and operand color.

Parameters:
gMode - Specifies the graphics mode.
opColor - Specifies the operand color.

Methods

 o setGraphicsMode
 public void setGraphicsMode(int mode)
This method sets the graphics mode

Parameters:
mode - Specifies the new graphics mode.
 o getGraphicsMode
 public int getGraphicsMode()
This method returns the graphics mode

Returns:
the graphics mode.
 o isGraphicsModeOpaque
 public boolean isGraphicsModeOpaque()
Returns true if the current mode is opaque, otherwise false.

 o setColor
 public void setColor(QDColor newColor)
This method sets the operand color.

Parameters:
newColor - Specifies the new color.
 o getColor
 public QDColor getColor()
This method returns the operand mode

Returns:
the color.
 o toString
 public String toString()
Returns the String representation of this Rectangle's values.

Overrides:
toString in class QTByteObject
 o clone
 public Object clone()
Return a copy of the GraphicsMode object.

Overrides:
clone in class Object

All Packages  Class Hierarchy  This Package  Previous  Next  Index